home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 8 / IOPROG_8.ISO / soft / sdkplnet / mac / plgsk401.sit / PluginSDK 4.01a / Examples / CharFlipper / Source / CFlipView.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-09  |  680 b   |  35 lines

  1. // CFlipView.cpp : implementation file
  2. //
  3. #include "CFlipView.h"
  4.  
  5.  
  6. CFlipView::CFlipView( CCharFlipper* inController )
  7. :    CPluginView( inController ),
  8.     mCurrentChar( ' ' )
  9. {
  10.  
  11. }
  12.  
  13. CFlipView::~CFlipView()
  14. {
  15. }
  16.  
  17.  
  18. //---------------------------------------------------------
  19. // CFlipView::SetChar
  20. //---------------------------------------------------------
  21. void
  22. CFlipView::SetChar( char inChar )
  23. {
  24.     mCurrentChar = inChar;
  25. }
  26.  
  27. //---------------------------------------------------------
  28. // CFlipView::GetCFController
  29. //---------------------------------------------------------
  30. CCharFlipper*
  31. CFlipView::GetFlipper()
  32. {
  33.     return (CCharFlipper*) mController ;
  34. }
  35.